home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / MailComposer / MailComposerInspector.h < prev    next >
Text File  |  1995-06-12  |  824b  |  32 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    MailComposerInspector
  4. //
  5. //    Inherits From:        IBInspector
  6. //
  7. //    Declared In:        MailComposerInspector.h
  8. //
  9. //    Class Description
  10. //
  11. //        Manages IB Attributes inspection of an instance of MailComposer.
  12. //        Owns MailComposerInspector.nib.
  13. //
  14. //    Disclaimer
  15. //
  16. //        You may freely copy, distribute and reuse this software and its
  17. //        associated documentation. I disclaim any warranty of any kind, 
  18. //        expressed or implied, as to its fitness for any particular use.
  19. //
  20. //----------------------------------------------------------------------------------------------------
  21. #import <apps/InterfaceBuilder.h>
  22.  
  23. @interface MailComposerInspector: IBInspector <IBInspectors>
  24. {
  25.         id    to;
  26.         id    subject;
  27.     id    cc;
  28.     id    body;
  29. }
  30.  
  31. @end
  32.